home *** CD-ROM | disk | FTP | other *** search
- package com.nokia.mid.sound;
-
- public class Sound {
- public Sound(byte[] data, int type) {
- }
-
- public Sound(int freq, long duration) {
- }
-
- public void init(int freq, long duration) {
- }
-
- public void init(byte[] data, int type) {
- }
-
- public int getState() {
- return 0;
- }
-
- public void play(int loop) {
- }
-
- public void stop() {
- }
-
- public void resume() {
- }
-
- public void release() {
- }
-
- public void setGain(int gain) {
- }
-
- public int getGain() {
- return 128;
- }
-
- public static int getConcurrentSoundCount(int type) {
- return 1;
- }
-
- public static int[] getSupportedFormats() {
- int[] pepito = new int[]{1};
- return pepito;
- }
-
- public void setSoundListener(SoundListener listener) {
- }
- }
-